home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINICONS / ICOS115.ZIP / ICOINST.BAT < prev    next >
DOS Batch File  |  1993-03-12  |  1KB  |  53 lines

  1. @echo off
  2. REM
  3. REM    Install IcoShow
  4. REM    Last revision 03/12/93
  5. REM    Usage: ICOINST  source-drive:  destination_drive:directory
  6. REM
  7.  
  8. if "%1"=="" goto usage
  9. if not exist %1\icoinst.bat goto usage
  10. if "%2"=="" goto usage
  11.  
  12. if exist %2\NUL goto copyit
  13. md %2
  14. if not exist %2\NUL goto error
  15.  
  16. :copyit
  17. echo.
  18. echo Copying IcoShow to directory %2
  19. copy %1\icoshow.exe %2 >NUL
  20. copy %1\icoshow.hlp %2 >NUL
  21.  
  22. if exist %2\icoshow.ini goto warning
  23. copy %1\icoshow.ini %2 >NUL
  24. goto endcopy
  25.  
  26. :warning
  27. echo.
  28. echo Your file ICOSHOW.INI wasn't been overwritten since you have an old version.
  29. echo If you wish to write a new version set the option "Save settings" from
  30. echo options menu and IcoShow will do it for you.
  31. pause
  32.  
  33. :endcopy
  34. echo.
  35. echo The copy was succesfully. Start IcoShow with
  36. echo                 %2\icoshow
  37. echo from Windows.
  38. echo.
  39. goto quit
  40.  
  41. :usage
  42. echo Use IcoShow with the following command line
  43. echo.
  44. echo              ICOINST  source_drive:  destination_drive:directory
  45. echo.
  46. goto quit
  47.  
  48. :error
  49. echo I could not create the directory %2. Please repeat the installation.
  50. echo Possibly disk is full.
  51.  
  52. :quit
  53.